home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 3 / Amiga Tools 3.iso / grafik / raytracing / rayshade-4.0.6.3 / libextra / hypot.c next >
C/C++ Source or Header  |  1994-08-09  |  102b  |  8 lines

  1. #include <math.h>
  2.  
  3. const double
  4. hypot (const double x, const double y)
  5. {
  6.   return sqrt (x*x + y*y);
  7. }
  8.